DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / Where Method
A function to test each element for a condition.

In This Topic
    Where Method (View<T>)
    In This Topic
    Filters the source view based on a predicate.
    Syntax
    'Declaration
     
    Public Function Where( _
       ByVal predicate As Expression(Of Func(Of T,Boolean)) _
    ) As View(Of T)

    Parameters

    predicate
    A function to test each element for a condition.

    Return Value

    A view that contains elements of this view that satisfy the condition.
    See Also